what are delegates and how to use them c#

82

what are delegates and how to use them c# -

delegate result-type identifier ([parameters])

what are delegates and how to use them c# -

public delegate void MyDelegate(string text);

what are delegates and how to use them c# -

myDelegate d1 = new myDelegate(Method1);myDelegate d2 = new myDelegate(Method2);myDelegate multicastDelegate = (myDelegate)Delegate.Combine(d1, d2);multicastDelegate.Invoke();

what are delegates and how to use them c# -

MyDelegate d = new MyDelegate(ShowText);

Comments

Submit
0 Comments